3de9d5dcd22086b054593dc510cfc93b0224e06d,wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.java,SignInPanel,onSignInSucceeded,#,232

Before Change


		// original destination, otherwise to the Home page
		if (!continueToOriginalDestination())
		{
			setResponsePage(getApplication().getSessionSettings().getPageFactory().newPage(
				getApplication().getHomePage()));
		}
	}

After Change


		// original destination, otherwise to the Home page
		if (!continueToOriginalDestination())
		{
			setResponsePage(getApplication().getHomePage());
		}
	}